home *** CD-ROM | disk | FTP | other *** search
- #ifndef TAN_LIB_STRUCTS_H
- #define TAN_LIB_STRUCTS_H
- /*
- © 1995 Tangent Systems
- All Rights Reserved.
-
- Public declarations for interface structures.
- Putting these declarations in a separate header makes it easier when it
- comes time to use Prograph C Tool to define these strcutures for use
- in CPX.
- */
-
- #pragma pgtype double Real8
- #pragma pgtype int Int4
- #pragma pgtype unsigned Nat4
-
- typedef struct {
- unsigned long length;
- int success;
- double result;
- double *data;
-
- } data_cache;
-
- #endif